home *** CD-ROM | disk | FTP | other *** search
- %!
- /-showpage /showpage load def
- /binddefinition{dup where{exch 2 copy get bind put}{ undefined }ifelse} def
- /showpage{
- initgraphics
- /Times-Roman findfont 6 scalefont setfont
- 0 setlinewidth
- % X Axis
- newpath
- 0 2 600{50 moveto 0 -3 rlineto}for stroke
- 0 10 600{50 moveto 0 -5 rlineto} for stroke
- 0 20 600{dup 50 moveto 0 -7 rlineto 0 -9 rmoveto 3 string cvs show } for
- 0 50 moveto 600 50 lineto stroke
- [1 1] 1 setdash
- 80 40 600{50 moveto 0 950 rlineto}for stroke
- % Y Axis
- [] 0 setdash
- 0 2 1000{50 exch moveto -3 0 rlineto}for stroke
- 0 10 1000{50 exch moveto -5 0 rlineto}for stroke
- 0 20 1000{dup 50 exch moveto -7 0 rlineto -14 0 rmoveto 4 string cvs show}for
- 50 0 moveto 50 1000 lineto stroke
- [1 1] 1 setdash
- 80 40 1000{50 exch moveto 550 0 rlineto}for stroke
- -showpage
- } bind def
- /showpage binddefinition
-